home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / mac / files / ID99MENU.DIR / 00205_Script_review shrink < prev    next >
Text File  |  1999-04-29  |  511b  |  22 lines

  1. global tickrate,stagedone
  2.  
  3. property s,mypercent,mywidth,myheight
  4.  
  5. on beginsprite me
  6.   s = the spritenum of me
  7.   mypercent = 0
  8.   mywidth = the width of sprite s
  9.   myheight = the height of sprite s
  10. end
  11.  
  12. on prepareframe me
  13.   set the width of sprite s = float(mywidth) / 100 * (100-mypercent)
  14.   set the height of sprite s = float(myheight) / 100 * (100-mypercent)
  15.   mypercent = min(100,mypercent+tickrate)
  16. end
  17.  
  18. on donestage me
  19.   if mypercent < 100 then
  20.     set stagedone = false  
  21.   end if 
  22. end